home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / protobnu.lqr / TERMINAL.DOC < prev    next >
Text File  |  1985-06-13  |  4KB  |  78 lines

  1. Quick Documentation for Terminal.Pas by Jim Nutt (76044,1155 or 71076,1434)
  2.  
  3. Description:
  4.  
  5.   Terminal is a terminal emulation program supporting VIDTEX cursor control
  6.   codes and CIS-A protocol uploads and downloads.  It is written in Turbo
  7.   Pascal and is placed in the public domain.  Thanks to Charles McGuinness
  8.   of the programmer's sig (PCS-158) for all the information there on CIS-A
  9.   as well as some examples coded in C.  Thanks to Scott Murphy and Alan
  10.   Bishop for the routines to do interrupt driven serial I/O.  This is a
  11.   program under development, more features are yet to come, but hopefully
  12.   this will whet your appetite a little bit.
  13.  
  14. Startup:
  15.  
  16.   Terminal is set up to use com1:, anyone needing to use com2: will have
  17.   to change the appropriate places in async.pas.  (async.pas is a slightly
  18.   modified version of ITRMPORT.INC by Scott Murphy, patches for it to work
  19.   on com2: should work for Terminal as well).  To start the program simply
  20.   type 'terminal <cr>', it will come up with the com parameters set to
  21.   1200 baud, 8 data bits, no parity, and 1 stop bit.  To use it with CIS
  22.   you must go to DEFALT and change your terminal type to VIDTEX, this will
  23.   set the other parameters appropriately.  Once this is done Terminal will
  24.   be ready to go.
  25.  
  26. Commands:
  27.  
  28.   Terminal has very few commands, yet.  I am open for suggestions as to what
  29.   commands are needed and how badly they are needed.  The current command
  30.   list is as follows:
  31.  
  32.     Buffer Commands:
  33.       <ALT>-<S>     Open RAM capture buffer.  The capture buffer is 64k long.
  34.       <ALT>-<C>     Close RAM capture buffer.  This is done automatically when
  35.                     the buffer files up.
  36.       <ALT>-<K>     Kill the capture buffer.  Clears the buffer's contents.
  37.       <ALT>-<W>     Write the capture buffer to a file.
  38.  
  39.     Parameter Set Command:
  40.       <ALT>-<P>    Set program and communications parameters.  This command
  41.                    asks for a subcommand.  These are specified in the form
  42.                    "subcommand,value".  The following are legal subcommands:
  43.  
  44.                       baud,value      Sets the current baud rate to value
  45.                       word,value      Sets the current word length to value
  46.                       stop,value      Sets the current stop bits to value
  47.                       parity,value    Sets the parity to value
  48.                       display         Displays the current parameters
  49.                       file,filename   Assigns the capture buffer file to
  50.                                       filename.
  51.  
  52.                    All subcommands may be abbreviated to a single letter
  53.                    followed by a parameter.  In the case of display, no
  54.                    parameter is necessary.
  55.  
  56.     Miscellaneous commands:
  57.       <ALT>-<H>    Hangs up the modem (hopefully) by bringing DTR low.
  58.       <ALT>-<D>    Prompts for the number to be dialed.  Currently only
  59.                    for Hayes(tm) compatible modems.
  60.       <ALT>-<X>    Exits terminal.  Does not disconnect.
  61.  
  62.     Uploads/Downloads
  63.       To upload and download using Terminal, first make sure that you have
  64.       told DEFALT that you are using a vidtex compatible terminal emulator.
  65.       Next just issue the normal commands to download without specifying a
  66.       protocol.  CIS will interrogate Terminal and ask what protocol to
  67.       use, to which Terminal will reply 'CIS A, of course', (or something
  68.       to that effect).  CIS will then prompt you for a filename to use at
  69.       your end, answer that prompt and the computers will do the rest.
  70.  
  71.     Cursor Positioning
  72.       Terminal responds to all the Vidtex screen control commands except
  73.       those dealing with color and graphics (coming soon!).  It also does
  74.       not allow CIS to open and close its ram buffer.  The codes are listed
  75.       in VID-12 on CIS.
  76.  
  77.  
  78.